com.supermap.services.iportalservices
Enum DataItemType
- java.lang.Object
-
- java.lang.Enum<DataItemType>
-
- com.supermap.services.iportalservices.DataItemType
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DataItemType>
public enum DataItemType extends java.lang.Enum<DataItemType>
file type
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description AUDIO
AUDIOCOLOR
ColorCOLORSCHEME
ColorSchemeCSV
csvEXCEL
excelFILLSYMBOL
FillSymbolGEOJSON
geojsonHBASE
HDFSIMAGE
IMAGEJSON
jsonLAYERTEMPLATE
/LAYERTEMPLATELAYOUTTEMPLATE
LayoutTemplateLINESYMBOL
LineSymbolMAPBOXSTYLE
MapBoxStyleMAPTEMPLATE
MapTemplateMARKERSYMBOL
MarkerSymbolMBTILES
mbtilesPHOTOS
PHOTOSSHP
shpSMTILES
smtilesSVTILES
svtilesTHEMETEMPLATE
ThemeTemplateTPK
tpkUDB
udbUGCV5
UGCV5UGCV5_MVT
UGCV5_MVTUNKNOWN
UNKNOWNVIDEO
VIDEOWORKENVIRONMENT
WorkEnvironmentWORKSPACE
WORKSPACE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static DataItemType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DataItemType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUDIO
public static final DataItemType AUDIO
AUDIO
-
COLOR
public static final DataItemType COLOR
Color
-
COLORSCHEME
public static final DataItemType COLORSCHEME
ColorScheme
-
CSV
public static final DataItemType CSV
csv
-
EXCEL
public static final DataItemType EXCEL
excel
-
FILLSYMBOL
public static final DataItemType FILLSYMBOL
FillSymbol
-
GEOJSON
public static final DataItemType GEOJSON
geojson
-
HBASE
public static final DataItemType HBASE
HDFS
-
IMAGE
public static final DataItemType IMAGE
IMAGE
-
JSON
public static final DataItemType JSON
json
-
LAYERTEMPLATE
public static final DataItemType LAYERTEMPLATE
/LAYERTEMPLATE
-
LAYOUTTEMPLATE
public static final DataItemType LAYOUTTEMPLATE
LayoutTemplate
-
LINESYMBOL
public static final DataItemType LINESYMBOL
LineSymbol
-
MAPBOXSTYLE
public static final DataItemType MAPBOXSTYLE
MapBoxStyle
-
MAPTEMPLATE
public static final DataItemType MAPTEMPLATE
MapTemplate
-
MARKERSYMBOL
public static final DataItemType MARKERSYMBOL
MarkerSymbol
-
MBTILES
public static final DataItemType MBTILES
mbtiles
-
PHOTOS
public static final DataItemType PHOTOS
PHOTOS
-
SHP
public static final DataItemType SHP
shp
-
SMTILES
public static final DataItemType SMTILES
smtiles
-
SVTILES
public static final DataItemType SVTILES
svtiles
-
THEMETEMPLATE
public static final DataItemType THEMETEMPLATE
ThemeTemplate
-
TPK
public static final DataItemType TPK
tpk
-
UDB
public static final DataItemType UDB
udb
-
UGCV5
public static final DataItemType UGCV5
UGCV5
-
UGCV5_MVT
public static final DataItemType UGCV5_MVT
UGCV5_MVT
-
UNKNOWN
public static final DataItemType UNKNOWN
UNKNOWN
-
VIDEO
public static final DataItemType VIDEO
VIDEO
-
WORKENVIRONMENT
public static final DataItemType WORKENVIRONMENT
WorkEnvironment
-
WORKSPACE
public static final DataItemType WORKSPACE
WORKSPACE
-
-
Method Detail
-
values
public static DataItemType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DataItemType c : DataItemType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataItemType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-